google.golang.org/grpc/internal/idle.Manager.activeCallsCount (field)
11 uses
	google.golang.org/grpc/internal/idle (current package)
		idle.go#L48: 	activeCallsCount          int32 // Count of active RPCs; -math.MaxInt32 means channel is idle or is trying to get there.
		idle.go#L80: 		activeCallsCount: -math.MaxInt32,
		idle.go#L113: 	if atomic.LoadInt32(&m.activeCallsCount) > 0 {
		idle.go#L151: 	if !atomic.CompareAndSwapInt32(&m.activeCallsCount, 0, -math.MaxInt32) {
		idle.go#L164: 	if atomic.LoadInt32(&m.activeCallsCount) != -math.MaxInt32 {
		idle.go#L166: 		atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L173: 		atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L196: 	if atomic.AddInt32(&m.activeCallsCount, 1) > 0 {
		idle.go#L207: 		atomic.AddInt32(&m.activeCallsCount, -1)
		idle.go#L242: 	atomic.AddInt32(&m.activeCallsCount, math.MaxInt32)
		idle.go#L263: 	atomic.AddInt32(&m.activeCallsCount, -1)
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)